public static synchronized DbHelper getInstance() {
if (instance == null) {
instance = new DbHelper(OmniNotes.getAppContext());
}
return instance;
}
public static synchronized DbHelper getInstance() {
return getInstance(OmniNotes.getAppContext());
}
public static synchronized DbHelper getInstance(Context context) {